home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / shape.lha / shape / makefile < prev    next >
Makefile  |  1993-08-08  |  640b  |  29 lines

  1. C= CC -I. -I../../CC
  2. FLAGS= +i -g
  3.  
  4. BJ= screen.o shape.o myshape.o slist.o put_line.o main.o
  5.  
  6. ll: shape.a
  7.  
  8. hape.a: $(OBJ)
  9. rm -f shape.a
  10. ar qc shape.a $(OBJ)
  11.  
  12. creen.o: screen.c screen.h
  13. $(CC) $(CFLAGS) -c screen.c
  14.  
  15. hape.o: shape.c shape.h line.h rectangle.h screen.h slist.h gslist.h
  16. $(CC) $(CFLAGS) -c shape.c
  17.  
  18. yshape.o: myshape.c myshape.h shape.h line.h rectangle.h screen.h slist.h gslist.h
  19. $(CC) $(CFLAGS) -c myshape.c
  20.  
  21. list.o: slist.c slist.h
  22. $(CC) $(CFLAGS) -c slist.c
  23.  
  24. ut_line.o: put_line.c screen.h
  25. $(CC) $(CFLAGS) -c put_line.c
  26.  
  27. ain.o: main.c myshape.h shape.h line.h rectangle.h screen.h gslist.h slist.h
  28. $(CC) $(CFLAGS) -c main.c
  29.